-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
DOC: closes gh6838. Breakout options.rst from basics.rst #7578
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DOC: closes gh6838. Breakout options.rst from basics.rst #7578
Conversation
also their is a section in the FAQ which you can incorporate (or maybe just delete) |
@@ -130,6 +130,7 @@ See the package overview for more detail about what's in the library. | |||
reshaping | |||
timeseries | |||
visualization | |||
options |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would move this right after basics
(before indexing)
I the top level you can render this and how it? |
What is the best way to get the .html up here? |
see here: #7398 You make a |
Wonderfull! BTW, as an alternative to show the output, instead of a png, you can also push it to github pages. See eg https://github.com/jorisvandenbossche/example-pandas-docs (I pushed the relevant pages (+ the static folder for css) to a folder in that repo for each pr, and then we can look at it that way). Then you can just give that link, and update the content if changes are made. (But do as you like!) |
|
||
.. _ref-repr-control: | ||
|
||
How do I control the way my DataFrame is displayed? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You removed the content in faq.rst, but is this all included in the new page?
And, maybe you could leave the question in the FAQ, but refer to the new docs page as the answer?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The content is in there, with examples given for large_repr
, expand_repr
, and max_rows
. The other items are much more clearly described in the table at the bottom. I'm happy to put the FAQ question back in, however, with this iteration of the docs, it should be much easier to find.
I'm seeing the same Travis-CI build errors for pull request #7619. These build errors don't seem to be related to the pull requests. |
|
||
with pd.option_context("display.max_rows",10,"display.max_columns", 5): | ||
print(pd.get_option("display.max_rows")) | ||
print(pd.get_option("display.max_columns")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems to be not working in your example output (I mean the indentation of this line is lost -> not anymore in with
context)
@clham Do you have time the coming days to process the comments? |
Yes. Sorry about dropping this, I started a new job this week and have
|
No problem, let know when you find some time to update. |
looking sexy :) |
@clham Really thanks a lot! |
DOC: closes gh6838. Breakout options.rst from basics.rst
closes #6838.
closes #3104
Breakout "options" section for docs, heavily using info already in
basics.rst
. Expands examples, and turnsdescribe_options
into a table.